home *** CD-ROM | disk | FTP | other *** search
- /*
- * Strings for Curve
- *
- * Error messages with printf arguments have the
- * conversion %'s in them to remind the programmer
- * of what should be passed to printf.
- */
-
- /*
- * Alert panel messages, titles, buttons.
- */
- "Apparatus";
- "OK"; /* title of OK button */
- "Cancel"; /* title of Cancel button */
- "Formula"; /* title of syntax error alert panel */
- /* syntax error alert message */
- "SYNERR%s%s" = "There is a syntax error in formula%s%s";
- /* Wrong type in an AnalyticApparatus */
- "TYPE%sUNKNOWN%s" = "Type %d unknown in %s\n";
- "Impossible"; /* impossible error occurred: title of alert panel */
- /* up_lineto returned a value it shouldn't have */
- "UP_LINETO" = "up_lineto(): bogus value in AnalyticApparatus";
- "No Apparatus"; /* No apparatus in CurveView, Inspector etc. */
- /* apparatus file has disappeared */
- "%s has disappeared. File %s not found.";
- /* Couldn't open a stream from standard error for objc_loadModules() */
- "Cannot get stream for standard error";
- /* Couldn't open a file */
- "Cannot open %s";
- "Load Apparatus"; /* title of error alert panel when loading an apparatus */
- /* Duplicate name of apparatus detected */
- "Programming error: Apparatus has no name";
- "There is already an apparatus called %s";
- "Replace"; /* Replace button title to replace duplicate apparatus */
- "Wrong type returned from Mathematica"; /* Mathematica snafu */
- "EX_RANGE" = "The maximum value of the range is not greater than the minimum. Using a default value.";
- /*
- * These next 3 must match the names in the type menu of AnalyticInspector
- */
- "Cartesian";
- "Polar";
- "Parametrized";
- /*
- * Error messages from Expression class. See Graph demo example.
- */
- "Invalid term type in setVar:value:";
- "Invalid term type in setVar:vector:";
- "Invalid term type in setVar:min:max:";
- "Wrong #subterms in evalTerm";
- "Unknown binary op type in evalTerm";
- "Invalid term type in evalTerm";
- "_addVarTerm: called with existing term";
- "Bogus term type in VarTermHash";
- /*
- * These two must match Help menu in Help panel
- */
- "General";
- "Programming";
- "Sorry, no help available."; /* When no help exists */
- /* These two are in the standard parametrizer; they label Points */
- "min t";
- "max t";
- "(Bad type)"; /* A Point has a bogus type; is PSshow'ed on screen */
-